home *** CD-ROM | disk | FTP | other *** search
/ Megaware 1 / Megaware Volume 1.iso / utils / mathchip / em87.doc < prev    next >
Encoding:
Text File  |  1990-06-09  |  5.9 KB  |  166 lines

  1.             EM87 V1.4    6/9/90
  2.             =========
  3.  
  4.     This program fully emulates the 8087 math coprocessor on 80286 
  5. and 80386 based computers. This is useful to run software that requires
  6. the 8087/80287/80287. This program does not emulate the 80287/80387
  7. extensions to the 8087 instruction set, but most software I have seen
  8. only uses the 8087 instructions to be PC/XT compatible. Please note that
  9. floating point emulation is MUCH slower than the real thing (but also 
  10. much cheaper!).
  11.     Unfortunately, this method of emulation does not work on the 8088
  12. and 8086 based computers because these processors do not have emulation
  13. support built in.
  14.  
  15. History:
  16. ========
  17.  
  18.     Version 1.1 fixes problems with programs that access extended memory,
  19. like VDISK.SYS, RAMDRIVE.SYS, SMARTDRV.SYS, AUTOCAD, etc. Also this version
  20. will not load if a real 80X87 is present.
  21.  
  22.     Version 1.2 fixes problems uninstalling EM87 under certain versions of
  23. DOS. Also display of the help screen would lock up some machines.
  24.  
  25.     Version 1.3 allows floating point exception interrupts to properly 
  26. cause a non-maskable interrupt when enabled. Very few programs use this feature.
  27. The lack of this capability caused programs that needed it to do strange things
  28. to the video display.
  29.  
  30. NEW!
  31. ====
  32.     Version 1.4 will not attempt to load on a 8088/8086/V20 processor
  33. machine. Note that the program has been changed from a .COM to a .EXE file. You
  34. must delete the old program. Copying the new program will not overwrite the old
  35. one! EM87 is now compatible with 80386 memory managers, see section below.
  36.  
  37. If you are using a 80386 memory manager:
  38. ========================================
  39.     To load EM87 on an 80386 machine with a memory manager loaded (such as
  40. QEMM, 386MAX, EMM386.SYS) you MUST place the device driver, EM87.SYS, in your
  41. CONFIG.SYS by putting the line:
  42.     DEVICE=EM87.SYS
  43. as the FIRST line in your CONFIG.SYS. This line MUST be before the line that
  44. installs the memory manager! You must also place the line:
  45.     EM87 /L
  46. in your AUTOEXEC.BAT. If EM87.EXE is not loaded after EM87.SYS and before ANY
  47. program that checks for or uses the numerics coprocessor, your system WILL
  48. crash! EM87 can not be unloaded if you are using a 80386 memory manager. It can
  49. be loaded into high memory if your memory manager has the capability to load
  50. programs in high memory. Do not load EM87.SYS into high memory, as it does not
  51. remain resident anyways.
  52.  
  53. Do NOT use EM87.SYS if you are not running a 80386 memory manager! 
  54. ==================================================================
  55.  
  56. Tested with:
  57. ============
  58.  
  59.     AUTOCAD release 9.
  60.     AUTOCAD release 10.
  61.     Microway's 87TEST v1.20 (A very intensive 8087 test program).
  62.     FATMAN30 (A great mandelbrot generator!).
  63.     NORTON UTILITIES 4.5 SI (Reports a 8087 present).
  64.     PC-Matlab
  65.     Simnon
  66.  
  67. Does not work with:
  68. ===================
  69.  
  70.     AUTOCAD 386.
  71.     Possibly any other program that uses a DOS extender (286 or 386
  72.         protected mode).
  73.     Probably only works with WINDOWS 3.0 in real mode.
  74.  
  75. Usage:
  76. ======
  77.     EM87        >Display the help screen.
  78.     EM87 /L        >Load the emulator.
  79.     EM87 /U        >Unload the emulator.
  80.  
  81. EM87 returns the error codes as shown in the section below to MSDOS.
  82.  
  83. Possible messages:
  84. ==================
  85.  
  86. ========EM87.SYS always displays the lines:
  87.  
  88. EM87.SYS V1.4 preload driver for 386 memory managers.
  89. Copyright (C) 1990 by Ron Kimball. All rights reserved.
  90.  
  91. ========followed by one of the following lines:
  92.  
  93. EM87.SYS successful. Thanks for using EM87!
  94.  
  95. Extended memory manager loaded! EM87.SYS must be loaded first! Can't load!
  96.  
  97. Math coprocessor detected! Can't load!
  98.  
  99. Not an 80386! Can't load!
  100.  
  101.  
  102. ========EM87.EXE always displays the lines:
  103.  
  104. EM87: 8087 emulator for 80286 and 80386 based computers.
  105. Version 1.4 (c) 1989, 1990 by Ron Kimball. All rights reserved.
  106.    If you continue to use this program after evaluation
  107. you must send 5 dollars for registration to:
  108.      RON KIMBALL
  109.      RR01 BOX 15Y
  110.      BROOKFIELD, MA  01506
  111.  
  112. ========followed by one of the following messages:                    ERROR CODE
  113. ========Command line = EM87                          ==========
  114.  
  115. Usage: EM87 /L         Installs the emulator.                       1
  116.        EM87 /U         Removes the emulator from memory.
  117.  
  118. ========Command line = EM87 /L
  119.  
  120. 8087 emulator loaded. Thanks for using EM87!                       0
  121.  
  122. Math coprocessor detected! Can't load!                           2
  123.  
  124. Processor must be 80286 or 80386! Can't load!                       4
  125.  
  126. Extended memory manager loaded! EM87.SYS must be loaded first! Can't load!     5
  127.  
  128. EM87 already loaded! Can't load!                           7
  129.  
  130. ========Command line = EM87 /U
  131.  
  132. EM87 unloaded. Thanks for using EM87!                           0
  133.  
  134. EM87 was not resident! Can't unload!                           3
  135.  
  136. Extended memory manager loaded! Can't unload!                       6
  137.  
  138. Source code or custom version:
  139. ==============================
  140.     These are available with a license to use or distribute EM87 with your
  141. software products. The price is usually $500.00 (Unless you need something
  142. really unusual). Write with your needs!
  143.  
  144. Distribution:
  145. =============
  146.  
  147.     This program may be freely distributed by anyone in its unmodified form
  148. only and must be with this unmodified documentation file.
  149.  
  150. Shareware:
  151.     EM87 is copyright 1989, 1990 Ron Kimball, all rights reserved. It is
  152. not "Public Domain" or "Freeware". If you intend to use this program after
  153. evaluation you must send me five dollars for registration. Registration
  154. entitles you to use EM87 on a single machine at any one time, and the right to
  155. use (under the same terms) any future version of EM87 that may be released for
  156. no further charge. Include the version number of EM87 that you are presently
  157. using. Also please tell me of any new uses you may find for this program.
  158.     This registration may be transferred to another by merely notifying me 
  159. at the address below.
  160.     I will notify you of updates, which you may download from various
  161. BBS's or obtain directly from me for a small charge. Thanks.
  162.  
  163.     Ron Kimball
  164.     RR01 Box 15Y
  165.     Brookfield, Ma 01506
  166.